* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #f7edf1;
    color: #000;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-page {
    height: auto; /* Changed from 100vh to auto to accommodate footer without scrolling */
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f7edf1 0%, #ffe6f0 100%);
    position: relative;
    justify-content: flex-start;
    gap: 8px;
    overflow: hidden;
    min-height: 100vh; /* Ensure minimum height is full viewport */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.logo {
    width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 0, 79, 0.2);
    animation: zoom 2s infinite alternate;
}

.tagline {
    font-size: 20px;
    font-weight: 700;
    color: #ff004f;
    text-shadow: 1px 1px 3px rgba(255, 0, 79, 0.3);
    animation: slideIn 2s infinite alternate;
    text-rendering: optimizeLegibility;
}

.welcome-message {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #ff004f;
    flex-shrink: 0;
    max-height: 18%;
    overflow: hidden;
}

.welcome-message h2 {
    font-size: 24px;
    color: #ff004f;
    margin-bottom: 3px;
    font-weight: 600;
}

.animated-text {
    font-size: 18px;
    color: #333;
    animation: bounce 2s infinite;
}

.contact-section {
   
    max-width: auto;
    padding: 8px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    margin-bottom: 5px;
    flex-shrink: 0;
    max-height: auto;
    overflow-y: auto;
    background-color: #ffe6f0;
}

.contact-content {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(90deg, #ff709631, #ffe6f0);
    padding: 14px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
   
    
    white-space: nowrap;
   
    text-overflow: ellipsis;
   
}

.social-card i {
    font-size: 19px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-card[data-platform="youtube"] i { color: #FF0000; }
.social-card[data-platform="facebook"] i { color: #3b5998; }
.social-card[data-platform="instagram"] i { color: #E1306C; }
.social-card[data-platform="google"] i { color: #4285F4; }
.social-card[data-platform="whatsapp"] i { color: #25D366; }
.social-card[data-platform="contact"] i { color: #007bff; }
.social-card[data-platform="share"] i { color: #ff004f; }

.social-card:hover {
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 0, 79, 0.3);
    background: linear-gradient(90deg, #ff7095, #ffd1e0);
}

.social-card:hover i {
    transform: scale(1.2);
}

.social-card:hover span {
    color: #ff005150;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #ff004f;
    max-width: 90%;
}

.popup-content h3 {
    color: #ff004f;
    margin-bottom: 8px;
}

.popup-content button, .call-btn {
    display: block;
    width: 80%;
    margin: 6px auto;
    padding: 6px;
    background: #ff004f;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.popup-content button:hover, .call-btn:hover {
    background: #e60045;
    transform: scale(1.05);
}

.call-btn {
    background: #007bff;
    text-decoration: none;
}

.call-btn:hover {
    background: #0066d9;
}

/* Footer Section */
.footer-section {
    text-align: center;
    padding: 10px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    font-weight:500;
}

.footer-section p {
    margin: 0;
}

.footer-section strong {
    font-weight: 700;
    color: #ff004f;
}

/* Animations */
@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes slideIn {
    0% { transform: translateX(-10px); opacity: 0.8; }
    100% { transform: translateX(10px); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}




/* Enhanced Media Queries for Responsiveness */
@media screen and (max-width: 1440px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 80px; }
    .tagline { font-size: 25px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 20px; }
    .welcome-message h2 { font-size: 24px; }
    .animated-text { font-size: 18px; }
    .contact-section { max-width: auto; padding: 6px; margin-top: 18px; margin-bottom: 4px; max-height: 62%; }
    .social-card { font-size: 17px; padding: 11px 8px; }
    .social-card i { font-size: 17px; }
    .popup-content button, .call-btn { font-size: 17px; }
    .footer-section {font-weight: 600; margin:10px; font-size: 13px; margin-top: 2px; }
}



@media screen and (max-width: 1075px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 70px; }
    .tagline { font-size: 20px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 11px; }
    .welcome-message h2 { font-size: 24px; }
    .animated-text { font-size: 12px; }
    .contact-section { max-width: auto; padding: 6px; margin-top: 10px; margin-bottom: 0px; max-height: 62%; }
    .social-card { font-size: 15px; padding: 11px 8px; }
    .social-card i { font-size: 15px; }
    .popup-content button, .call-btn { font-size: 16px; }
    .footer-section {font-weight: 00; margin:10px; font-size: 10px; margin-top: 0px; }
}



@media screen and (max-width: 1024px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 70px; }
    .tagline { font-size: 20px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 10px; }
    .welcome-message h2 { font-size: 20px; }
    .animated-text { font-size: 15px; }
    .contact-section { max-width: auto; padding: 6px; margin-top: 10px; margin-bottom: 4px; max-height:auto;}
    .social-card { font-size: 15px; padding: 9px 5px; }
    .social-card i { font-size: 16px; }
    .popup-content button, .call-btn { font-size: 15px; }
    .footer-section { font-weight: 600; margin-top: 0px;font-size:  12px; }
}

@media screen and (max-width: 768px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 60px; }
    .tagline { font-size: 18px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 10px; }
    .welcome-message h2 { font-size: 18px; }
    .animated-text { font-size: 13px; }
    .contact-section { max-width: auto; padding: 6px; margin-top: 12px; margin-bottom: 4px; max-height: auto; }
    .social-card { font-size: 16px; padding: 9px 5px; }
    .social-card i { font-size: 18px; }
    .popup-content button, .call-btn { font-size: 14px; }
    .footer-section { font-weight: 600;  font-size: 12px; }
}

@media screen and (max-width: 425px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 50px; }
    .tagline { font-size: 15px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 8px; }
    .welcome-message h2 { font-size: 16px; }
    .animated-text { font-size: 12px; }
    .contact-section { max-width:auto;padding: 4px; margin-top: 11px; margin-bottom: 4px; max-height: auto; }
    .social-card { font-size: 16px; padding: 8px 3px; }
    .social-card i { font-size: 18px; }
    .popup-content button, .call-btn { font-size: 14px; }
    .footer-section { font-weight: 600; font-size:11px; margin-top: 0px; }
}

@media screen and (max-width: 375px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 40px; }
    .tagline { font-size: 17px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 8px; }
    .welcome-message h2 { font-size: 19px; }
    .animated-text { font-size: 11px; }
    .contact-section { max-width: auto; padding: 6px; margin-top: 11px; margin-bottom: 2px; max-height: auto; }
    .social-card { font-size: 16px; padding: 11px 8px; }
    .social-card i { font-size: 17px; }
    .popup-content button, .call-btn { font-size: 15px; }
    .footer-section { font-size: 10px; }
}


@media screen and (max-width: 320px) {
    .landing-page { padding: 8px; gap: 6px; }
    .logo { width: 30px; }
    .tagline { font-size: 15px; }
    .welcome-message { padding: 6px 10px; max-height: 20%; margin-top: 10px; }
    .welcome-message h2 { font-size: 17px; }
    .animated-text { font-size: 12px; }
    .contact-section { max-width: auto; padding: 6px; margin-top: 18px; margin-bottom: 4px; max-height: auto; }
    .social-card { font-size:  14px; padding: 11px 8px; }
    .social-card i { font-size: 15px; }
    .popup-content button, .call-btn { font-size: 13px; }
    .footer-section { font-size: 9px; }
}